/* Criado por Raylan victor - 2025 */
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  body {
    background: #f8f7f2;
    color: #333;
  }
  
  /* Cabeçalho */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
  }
  
  header .logo img {
    height: 120px; /* logo aumentada */
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px; /* mais junto da logo */
    margin-left: 650px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #008c45;
    font-weight: 500;
    font-size: 16px;
  }
  
  .btn {
    background: #008c45;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
  }
  
  


  .qualidades {
    max-width: 1200px;
    margin: 0 auto; /* centraliza na tela */
    text-align: center; /* centraliza o texto */
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: #006633;
  }

  .categoria {
    max-width: 1200px;
    margin: 0 auto; /* centraliza na tela */
    text-align: justify; /* centraliza o texto */
    padding: 40px 20px;
  }
  
  .qualidades p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    margin-top: -30px;
  }

  .qualidades h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .qualidades ul {
    list-style: none; /* remove marcadores padrão */
    padding: 0;
  }
  
  .qualidades li {
    margin-bottom: 50px;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  .qualidades strong {
    font-weight: bold;
  }
  
  .qualidades .destaque {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #00994d;
  }

  /* Fonte global */
* {
    font-family: 'Montserrat', sans-serif;
  }
  h1, h2, h3, h4, h5, h6 {
    font-weight: 800; /* títulos bem fortes */
  }
  
  p, li, a, span {
    font-weight: 400; /* texto normal */
  }
  
  .btn {
    font-weight: 700; /* botões em negrito */
  }
  
  /* ========================
     UNIDADES
  ======================== */
  .units {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    background: #63a91f; /* verde do fundo */
  }
  
  .units-text {
    height: 250px;
    flex: 1;
    background: #008c45;
    color: #fff;
    border-radius: 15px 0;
    padding: 40px;
    font-weight: bold;
  }
  
  .units-text h2 {
    font-size: 40px;
    margin-bottom: 10px;
    margin-top: -15px;
  }
  
  .units-text p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  
  .units-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
  }
  
  .units-img {
    flex: 1;
  }
  
  .units-img img {
    width: 100%;
    height: 100%;
    border-radius: 15px 0;
    object-fit: cover;
  }
  
  /* ========================
     RODAPÉ
  ======================== */
  
  footer {
    background: #63a91f;
    color: #fff;
    padding: 20px 40px;
    display: flex;
    flex-direction: column; /* organiza em duas linhas */
    gap: 15px; /* espaço entre as linhas */
  }
  
  /* Linha de cima */
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-logo img {
    height: 80px;
  }
  
  .footer-nav {
    display: flex;
    gap: 20px;
  }
  
  .footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer-nav a:hover {
    text-decoration: underline;
  }
  
  /* Linha de baixo */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }
  
  .creditos {
    font-size: 13px;
    margin-top: -20px;
  }
  
  .creditos a {
    color: #fff;
    text-decoration: underline;
  }
  
  
  /* ========================
     CARROSSEL UNIDADES
  ======================== */
  .carousel {
    width: 100%;
    height: 250px; /* mantém sua altura */
    overflow: hidden;
    border-radius: 15px 0;
    position: relative;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 1s ease-in-out; /* troca suave */
    will-change: transform;
  }
  
  .carousel img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    flex: 0 0 100%; /* cada imagem ocupa 100% da largura do .carousel */
    display: block;
  }